home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Super Collection / Windows 95 Super Collection.iso / win95 / internet / rcp3217 / install.doc < prev    next >
Encoding:
Text File  |  1995-07-01  |  2.4 KB  |  69 lines

  1.  
  2.  
  3.                              Winsock RCP32.DLL 1.7
  4.                        Copyright 1994 Denicomp Systems
  5.                              All rights reserved
  6.  
  7.  
  8. The directory in which you install RCP32.DLL must be included in your PATH
  9. environment variable or you can copy this file to your Windows directory
  10. (e.g. \WINNT35, \WINDOWS, \WINNT35\SYSTEM, \WINDOWS\SYSTME).
  11.  
  12. The distribution contains a sample program: CRCP.C.  This was written using
  13. Microsoft Visual C/C++ 2.0.
  14.  
  15. To compile the sample program, type the following at a command prompt:
  16.  
  17.  
  18.     nmake /f crcp.mak crcp.exe
  19.  
  20.  
  21. The files RCP32.H and RCP32.LIB must be in the current directory to compile
  22. using this Makefile.
  23.  
  24. Once compiled, the program functions as a scaled down RCP command.  It is a
  25. "console" program and its syntax is:
  26.  
  27.  
  28.            CRCP [-r][-a][-c][-h] source dest
  29.  
  30. Where:
  31.  
  32.        -r:  Recursively copy "source" to "dest".  Copies all files and
  33.             subdirectories in "source" to "dest".  "dest" must be a directory.
  34.  
  35.        -a:  Perform ASCII end-of-line conversions.  Otherwise, contents of
  36.             files are not modified.
  37.  
  38.        -c:  Preserve the case of filenames when using wildcards or recursive
  39.             copies.  Otherwise, names are converted to lowercase characters.
  40.             When copying individual files, the case specified on the command
  41.             line is used.
  42.  
  43.        -h:  When using wildcards or -r, normally hidden files are not copied.
  44.             If you specify -h, hidden files will be copied.
  45.  
  46.        -s:  If a filename contains spaces, an underscore (_) will be substituted
  47.             for each space in the destination filename on the remote host.
  48.  
  49. Do not combine command line options; separate each with a space.  For example,
  50. use "-r -c", not "-rc".
  51.  
  52. The "source" and "dest" parameters either specify a file or directory on the
  53. local system or a file or directory on a remote host.  At least one of these
  54. must specify a remote host.
  55.  
  56. When specifying a file/directory on a remote host, the "source" and/or "dest"
  57. parameters must be in the following format:
  58.  
  59.  
  60.              [user@]host:file   OR   [user@]host:directory
  61.  
  62.  
  63. See RCPDLL32.DOC for more details.
  64.  
  65. Wildcards may be used.  However, only one source and one destination can
  66. be specified.  That is, you cannot specify multiple source files by separating
  67. the names with spaces as you can with the standard RCP command.
  68.  
  69.